This report describes the results of a preregistered study available at: https://osf.io/582wx.
Note also that this data has been cleaned beforehand. Three datasets
were merged (joined) through an inner join—2 Qualtrics surveys and 1
Inquisit task—so as to keep only participants who at least participated
at each step of the study. Missing data will be imputed later on.
Duplicates were addressed with the rempsyc::best_duplicate
function, which keeps the duplicate with the least amount of missing
values, and in case of ties, takes the first occurrence.
library(rempsyc)
library(dplyr)
library(interactions)
library(performance)
library(see)
library(ggplot2)
library(report)
library(bestNormalize)
library(psych)
library(visdat)
library(missForest)
library(doParallel)
summary(report(sessionInfo()))The analysis was done using the R Statistical language (v4.2.1; R Core Team, 2022) on Windows 10 x64, using the packages iterators (v1.0.14), doParallel (v1.0.17), interactions (v1.1.5), performance (v0.10.0.10), see (v0.7.3), report (v0.5.5.1), foreach (v1.5.2), bestNormalize (v1.8.3), psych (v2.2.9), missForest (v1.5), rempsyc (v0.1.0.2), visdat (v0.5.3), ggplot2 (v3.3.6) and dplyr (v1.0.10).
# Read data
data <- read.table("data/fulldataset.txt", sep = "\t", header = TRUE)
# Dummy-code group variable
data <- data %>%
mutate(condition_dum = ifelse(condition == "Mindfulness", 1, 0),
condition = as.factor(condition))
cat(report_participants(data, threshold = 1))379 participants (Mean age = 42.9, SD = 12.8, range: [21, 81]; Gender: 58.3% women, 40.1% men, 1.58% non-binary; Country: 100.00% United States of America; Race: 75.73% White, 10.55% Black or African American, 7.12% Asian, 4.22% Mixed, 2.37% other)
# Allocation ratio
report(data$condition)x: 2 levels, namely Control (n = 191, 50.40%) and Mindfulness (n = 188, 49.60%)
In this section, we are preparing the data for analysis: (a) taking
care of preliminary exclusions, (b) checking for and exploring missing
values, (d) imputing missing data with missForest, (e)
computing scale means, and (f) extracting reliability indices for our
scales.
First, we only want to keep those who agreed to keep their participation in the study after the debriefing.
data %>%
count(debrief.consent)| debrief.consent | n |
|---|---|
| Yes, I accept to maintain my participation to this study. | 379 |
Nobody to exclude based on consent.
Second, we know that we only want to keep participants who had at
least an 80% success rate in the critical experimental manipulation
task. Let’s see how many participants have less than an 80% success
rate. Those with missing values for variable
manipsuccessleft will also be excluded since they have not
completed the critical experimental manipulation in this study.
data %>%
summarize(success.80 = sum(manipsuccessleft < .80,
na.rm = TRUE),
is.na = sum(is.na(manipsuccessleft)))| success.80 | is.na |
|---|---|
| 10 | 0 |
There’s 10 people with success smaller than 80%, let’s exclude them.
data <- data %>%
filter(manipsuccessleft >= .80)
cat(report_participants(data, threshold = 1))369 participants (Mean age = 43.2, SD = 12.8, range: [21, 81]; Gender: 58.8% women, 39.6% men, 1.63% non-binary; Country: 100.00% United States of America; Race: 76.69% White, 9.49% Black or African American, 7.05% Asian, 4.34% Mixed, 2.44% other)
Let’s also exclude those who failed 2 or more attention checks (i.e., keep with those with a score of two or more).
data <- data %>%
mutate(att_check = rowSums(
select(., att_check1, att_check2, att_check3)))
data %>%
count(att_check)| att_check | n |
|---|---|
| 1 | 5 |
| 2 | 17 |
| 3 | 347 |
There’s 5 more exclusions here.
data <- data %>%
filter(att_check >= 2)
cat(report_participants(data, threshold = 1))364 participants (Mean age = 43.4, SD = 12.7, range: [21, 81]; Gender: 59.1% women, 39.3% men, 1.65% non-binary; Country: 100.00% United States of America; Race: 76.65% White, 9.62% Black or African American, 7.14% Asian, 4.40% Mixed, 2.20% other)
# Check for nice_na
nice_na(data, scales = c("BSCS", "BAQ", "KIMS"))| var | items | na | cells | na_percent | na_max | na_max_percent | all_na |
|---|---|---|---|---|---|---|---|
| BSCS_1:BSCS_7 | 7 | 0 | 2548 | 0.00 | 0 | 0.00 | 0 |
| BAQ_1:BAQ_12 | 12 | 0 | 4368 | 0.00 | 0 | 0.00 | 0 |
| KIMS_1:KIMS_39 | 39 | 2 | 14196 | 0.01 | 2 | 5.13 | 0 |
| Total | 95 | 18 | 34580 | 0.05 | 2 | 2.11 | 0 |
No missing data for our scales of interest, yeah! Except 2 items for KIMS.
Let’s check for patterns of missing data.
# Smaller subset of data for easier inspection
data %>%
select(manualworkerId:att_check2_raw,
condition:condition_dum) %>%
vis_miss# Let's use Little's MCAR test to confirm
# We have to proceed by "scale" because the function can only
# support 30 variables max at a time
library(naniar)
data %>%
select(BSCS_1:BSCS_7) %>%
mcar_test| statistic | df | p.value | missing.patterns |
|---|---|---|---|
| 0 | 0 | 0 | 1 |
# a p-value of 0 means the test failed because there's no missing values.
data %>%
select(BAQ_1:BAQ_12) %>%
mcar_test| statistic | df | p.value | missing.patterns |
|---|---|---|---|
| 0 | 0 | 0 | 1 |
# a p-value of 0 means the test failed because there's no missing values.
data %>%
select(KIMS_1:KIMS_20) %>%
mcar_test| statistic | df | p.value | missing.patterns |
|---|---|---|---|
| 34.45728 | 19 | 0.0162216 | 2 |
data %>%
select(KIMS_21:KIMS_39) %>%
mcar_test| statistic | df | p.value | missing.patterns |
|---|---|---|---|
| 18.04105 | 18 | 0.4529514 | 2 |
Here, we impute missing data with the missForest
package, as it is one of the best imputation methods.
# Need character variables as factors
# "Error: Can not handle categorical predictors with more than 53 categories."
# So we have to temporarily remove IDs also...
new.data <- data %>%
select(-c(manualworkerId, embeddedworkerId, gender,
att_check1, att_check2, att_check3)) %>%
mutate(across(where(is.character), as.factor))
# Parallel processing
registerDoParallel(cores = 4)
# Variables
set.seed(100)
data.imp <- missForest(new.data, verbose = TRUE, parallelize = "variables")
# Total time is 2 sec (4*0.5) - 4 cores
# Extract imputed dataset
new.data <- data.imp$ximpThere are some variables we don’t actually want to impute, like country. We want to keep those NAs in that case. Let’s add them back. We also want to add ID back.
# Add ID
new.data <- bind_cols(manualworkerId = data$manualworkerId, new.data)
# Add back the NAs in country
data <- new.data %>%
mutate(country.ip = data$country.ip,
gender = data$gender,
att_check1 = data$att_check1,
att_check2 = data$att_check2,
att_check3 = data$att_check3)Why impute the data? van Ginkel explains,
Regardless of the missingness mechanism, multiple imputation is always to be preferred over listwise deletion. Under MCAR it is preferred because it results in more statistical power, under MAR it is preferred because besides more power it will give unbiased results whereas listwise deletion may not, and under NMAR it is also the preferred method because it will give less biased results than listwise deletion.
van Ginkel, J. R., Linting, M., Rippe, R. C. A., & van der Voort, A. (2020). Rebutting existing misconceptions about multiple imputation as a method for handling missing data. Journal of Personality Assessment, 102(3), 297-308. https://doi.org/10.1080/00223891.2018.1530680
Why missForest? It outperforms other imputation methods,
including the popular MICE (multiple imputation by chained equations).
You also don’t end up with several datasets, which makes it easier for
following analyses. Finally, it can be applied to mixed data types
(missings in numeric & categorical variables).
Waljee, A. K., Mukherjee, A., Singal, A. G., Zhang, Y., Warren, J., Balis, U., … & Higgins, P. D. (2013). Comparison of imputation methods for missing laboratory data in medicine. BMJ open, 3(8), e002847. https://doi.org/10.1093/bioinformatics/btr597
Stekhoven, D. J., & Bühlmann, P. (2012). MissForest—non-parametric missing value imputation for mixed-type data. Bioinformatics, 28(1), 112-118. https://doi.org/10.1093/bioinformatics/btr597
# Reverse code items 2, 4, 6, 7
data <- data %>%
mutate(across(starts_with("BSCS"), .names = "{col}r"))
data <- data %>%
mutate(across(c(BSCS_2, BSCS_4, BSCS_6, BSCS_7), ~nice_reverse(.x, 5), .names = "{col}r"))
# Get mean BSCS
data <- data %>%
mutate(BSCS = rowMeans(select(., BSCS_1r:BSCS_7r)))# Reverse code item 7
data <- data %>%
mutate(across(starts_with("BAQ"), .names = "{col}r"))
data <- data %>%
mutate(across(BAQ_7, ~nice_reverse(.x, 7), .names = "{col}r"))
# Get sum of BAQ
data <- data %>%
mutate(BAQ = rowMeans(select(., BAQ_1r:BAQ_12r)))# Reverse code items 3-4, 8, 11-12, 14, 16, 18, 20, 22, 23-24, 27-28, 31-32, 35-36
data <- data %>%
mutate(across(starts_with("KIMS"), .names = "{col}r"))
data <- data %>%
mutate(across(all_of(paste0("KIMS_", c(3:4, 8, 11:12, 14, 16, 18, 20,
22:24, 27:28, 31:32, 35:36))),
~nice_reverse(.x, 5), .names = "{col}r"))
# Get sum of KIMS
data <- data %>%
mutate(KIMS = rowMeans(select(., KIMS_1r:KIMS_39r)))x <- data %>%
select(BSCS_1r:BSCS_7r) %>%
alpha
x$feldt##
## 95% confidence boundaries (Feldt)
## lower alpha upper
## 0.81 0.84 0.86
x <- data %>%
select(BAQ_1r:BAQ_12r) %>%
alpha
x$feldt##
## 95% confidence boundaries (Feldt)
## lower alpha upper
## 0.81 0.84 0.86
x <- data %>%
select(KIMS_1r:KIMS_39r) %>%
alpha## Warning in alpha(.): Some items were negatively correlated with the total scale and probably
## should be reversed.
## To do this, run the function again with the 'check.keys=TRUE' option
## Some items ( KIMS_8r ) were negatively correlated with the total scale and
## probably should be reversed.
## To do this, run the function again with the 'check.keys=TRUE' option
x$feldt##
## 95% confidence boundaries (Feldt)
## lower alpha upper
## 0.89 0.9 0.92
We are getting the “Some items ( KIMS_8r ) were negatively correlated with the total scale and probably should be reversed.” warning. Let’s check these items. In the raw data, item 17 is:
labels.part2$KIMS_8Which corresponds to items 17 and 19 as described in the original
paper (Baer, Smith, & Allen in 2004). They also make sense to not
reverse-score, theoretically speaking; they seem to relate to
mindfulness, not its absence. So it is kind of strange that
psych::alpha is suggesting to reverse-score these items.
Perhaps the scale is not meant to be used as a single factor since it
contains four factor subscales.
In this section, we will: (a) test assumptions of normality, (b) transform variables violating assumptions, (c) test assumptions of homoscedasticity, (d) identify and winsorize outliers, and (e) conduct the t-tests.
lapply(col.list, function(x)
nice_normality(data,
variable = x,
title = x,
group = "condition",
shapiro = TRUE,
histogram = TRUE))## [[1]]
##
## [[2]]
##
## [[3]]
##
## [[4]]
## Warning: Removed 1 rows containing non-finite values (stat_bin).
## Warning: Removed 1 rows containing non-finite values (stat_density).
##
## [[5]]
##
## [[6]]
Several variables are clearly skewed. Let’s apply transformations. But first, let’s deal with the working memory task, SOPT (Self-Ordered Pointing Task). It is clearly problematic.
The function below transforms variables according to the best
possible transformation (via the bestNormalize package),
and also standardizes the variables.
predict_bestNormalize <- function(var) {
x <- bestNormalize(var, standardize = FALSE, allow_orderNorm = FALSE)
print(cur_column())
print(x$chosen_transform)
cat("\n")
predict(x)
}
set.seed(100)
data <- data %>%
mutate(across(all_of(col.list),
predict_bestNormalize,
.names = "{.col}.t"))## [1] "blastintensity"
## I(x) Transformation with 364 nonmissing obs.
##
## [1] "blastduration"
## I(x) Transformation with 364 nonmissing obs.
##
## [1] "blastintensity.duration"
## Non-Standardized sqrt(x + a) Transformation with 364 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - mean (before standardization) = 66.62117
## - sd (before standardization) = 32.39192
##
## [1] "KIMS"
## Non-Standardized asinh(x) Transformation with 363 nonmissing obs.:
## Relevant statistics:
## - mean (before standardization) = 1.93303
## - sd (before standardization) = 0.1366693
##
## [1] "BSCS"
## Non-Standardized Yeo-Johnson Transformation with 364 nonmissing obs.:
## Estimated statistics:
## - lambda = 1.59839
## - mean (before standardization) = 6.664788
## - sd (before standardization) = 1.998245
##
## [1] "BAQ"
## Non-Standardized sqrt(x + a) Transformation with 364 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - mean (before standardization) = 1.712829
## - sd (before standardization) = 0.3038779
col.list <- paste0(col.list, ".t")Note. The I(x) transformations above are actually not transformations, but a shorthand function for passing the data “as is”. Suggesting the package estimated the various attempted transformations did not improve normality in those cases, so no transformation is used. This only appears when standardize is set to FALSE. When set to TRUE, for those variables, it is actually center_scale(x), suggesting that the data are only CENTERED because they need no transformation (no need to be scaled), only to be centered.
Let’s check if normality was corrected.
# Group normality
lapply(col.list, function(x)
nice_normality(data,
x,
"condition",
shapiro = TRUE,
title = x,
histogram = TRUE))## [[1]]
##
## [[2]]
##
## [[3]]
##
## [[4]]
## Warning: Removed 1 rows containing non-finite values (stat_bin).
## Warning: Removed 1 rows containing non-finite values (stat_density).
##
## [[5]]
##
## [[6]]
Looks rather reasonable now, though not perfect (fortunately t-tests are quite robust against violations of normality).
We can now resume with the next step: checking variance.
# Plotting variance
plots(lapply(col.list, function(x) {
nice_varplot(data, x, group = "condition")
}),
n_columns = 3)## Warning: Removed 1 rows containing non-finite values (stat_smooth).
## Warning: Removed 1 rows containing missing values (geom_point).
Variance looks good. No group has four times the variance of any other group. We can now resume with checking outliers.
plots(lapply(col.list, function(x) {
outliers_plot(data, x, group = "condition", ytitle = x, binwidth = 0.15)
}),
n_columns = 2)## Warning: Removed 1 rows containing non-finite values (stat_bindot).
There are some outliers, but nothing unreasonable. Let’s still check with the 3 median absolute deviations (MAD) method.
data %>%
#as.data.frame %>%
filter(condition == "Control") %>%
find_mad(col.list, criteria = 3)## There were no outlier based on 3 median absolute deviations.
data %>%
#as.data.frame %>%
filter(condition == "Mindfulness") %>%
find_mad(col.list, criteria = 3)## 3 outlier(s) based on 3 median absolute deviations for variable(s):
## blastintensity.t, blastduration.t, blastintensity.duration.t, KIMS.t, BSCS.t, BAQ.t
##
## Outliers per variable:
##
## $KIMS.t
## Row KIMS.t_mad
## 1 139 -4.610287
## 2 163 -3.030456
##
## $BAQ.t
## Row BAQ.t_mad
## 1 124 3.146018
There are 3 outliers after our transformations.
Visual assessment and the MAD method confirm we have some outlier values. We could ignore them but because they could have disproportionate influence on the models, one recommendation is to winsorize them by bringing the values at 3 SD. Instead of using the standard deviation around the mean, however, we use the absolute deviation around the median, as it is more robust to extreme observations. For a discussion, see:
Leys, C., Klein, O., Bernard, P., & Licata, L. (2013). Detecting outliers: Do not use standard deviation around the mean, use absolute deviation around the median. Journal of Experimental Social Psychology, 49(4), 764–766. https://doi.org/10.1016/j.jesp.2013.03.013
# Winsorize variables of interest with MAD
data <- data %>%
group_by(condition) %>%
mutate(across(all_of(col.list),
winsorize_mad,
.names = "{.col}.w")) %>%
ungroup()
# Update col.list
col.list <- paste0(col.list, ".w")Outliers are still present but were brought back within reasonable limits, where applicable.
We can now standardize our variables.
data <- data %>%
mutate(across(all_of(col.list),
function(x) {
as.numeric(scale(x))
},
.names = "{col}.s"))
# Update col.list
col.list <- paste0(col.list, ".s")We are now ready to compare the group condition (Control vs. Mindfulness Priming) across our different variables with the t-tests.
nice_t_test(data,
response = col.list,
group = "condition") %>%
nice_table(highlight = 0.10, width = .80)## [97mUsing Welch t-test (base R's default; cf. https://doi.org/10.5334/irsp.82).
## For the Student t-test, use `var.equal = TRUE`.
## [97m
## Warning: Missing values detected. NAs dropped.
Dependent Variable | t | df | p | d | 95% CI |
blastintensity.t.w.s | -0.72 | 359.26 | .470 | -0.08 | [-0.28, 0.13] |
blastduration.t.w.s | -0.77 | 361.48 | .442 | -0.08 | [-0.29, 0.12] |
blastintensity.duration.t.w.s | -0.70 | 360.10 | .487 | -0.07 | [-0.28, 0.13] |
KIMS.t.w.s | 2.19 | 352.72 | .029 | 0.23 | [0.02, 0.44] |
BSCS.t.w.s | 2.48 | 361.65 | .014 | 0.26 | [0.05, 0.47] |
BAQ.t.w.s | -1.71 | 360.07 | .087 | -0.18 | [-0.39, 0.03] |
Interpretation: There is no effect whatsoever on sound blast. However, there seems to be baseline group differences in terms of self-control, trait aggression, and trait mindfulness, despite the block randomization…
nice_violin(data,
group = "condition",
response = "blastintensity.duration.t.w.s",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = 1)Let’s extract the means and standard deviations for journal reporting.
data %>%
group_by(condition) %>%
summarize(M = mean(blastintensity.duration),
SD = sd(blastintensity.duration),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 5,301.52 | 4,552.13 | 186 |
Mindfulness | 5,676.18 | 4,662.31 | 178 |
Let’s see if our variables don’t interact together with our experimental condition. But first, let’s test the models assumptions.
big.mod3 <- lm(blastintensity.duration.t.w.s ~ condition_dum*BSCS.t.w.s
# + condition_dum*KIMS.t.w.s + condition_dum*BAQ.t.w.s
, data = data, na.action="na.exclude")
check_model(big.mod3)All the models assumptions look pretty good overall actually, even with all these variables. The lines for linearity and homoscedasticity are a bit skewed but nothing too crazy. Let’s now look at the results.
big.mod3 %>%
nice_lm(b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | β | t | p | sr2 |
blastintensity.duration.t.w.s | condition_dum | 360 | 0.06 | 0.58 | .561 | .00 |
blastintensity.duration.t.w.s | BSCS.t.w.s | 360 | -0.07 | -0.89 | .376 | .00 |
blastintensity.duration.t.w.s | condition_dum:BSCS.t.w.s | 360 | 0.04 | 0.40 | .693 | .00 |
Interpretation: The condition by trait self-control (brief self-control scale, BSCS) interaction does not come up.
Let’s plot the main significant interaction(s).
interact_plot(big.mod3, pred = "condition_dum", modx = "BSCS.t.w.s",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")Interpretation: The interaction is pretty much the same for all models. Counterintuitively, for people with low self-control, the priming mindfulness condition relates to lower aggression relative to the control condition. In contrast, for people with high self-control, the priming mindfulness condition relates to higher aggression.
Let’s look at the simple slopes now (only for the significant interaction).
big.mod3 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastintensity.duration.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 360 | 0.02 | 0.13 | .895 | .00 |
blastintensity.duration.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 360 | 0.06 | 0.58 | .561 | .00 |
blastintensity.duration.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 360 | 0.10 | 0.69 | .492 | .00 |
big.mod1 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastintensity.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 360 | 0.01 | 0.09 | .930 | .00 |
blastintensity.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 360 | 0.07 | 0.62 | .534 | .00 |
blastintensity.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 360 | 0.12 | 0.79 | .431 | .00 |
big.mod2 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastduration.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 360 | 0.03 | 0.23 | .821 | .00 |
blastduration.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 360 | 0.07 | 0.66 | .509 | .00 |
blastduration.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 360 | 0.11 | 0.71 | .481 | .00 |
Interpretation: There seems to have no effect of priming mindfulness on blast intensity as a function of self-control.
Let’s see if our variables don’t interact together with our experimental condition. But first, let’s test the models assumptions.
big.mod3 <- lm(blastintensity.duration.t.w.s ~ condition_dum*KIMS.t.w.s*BSCS.t.w.s +
condition_dum*BAQ.t.w.s*BSCS.t.w.s
, data = data, na.action="na.exclude")
check_model(big.mod3)All the models assumptions look pretty good overall actually, even with all these variables. The lines for linearity and homoscedasticity are a bit skewed but nothing too crazy. Let’s now look at the results.
big.mod3 %>%
nice_lm(b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | β | t | p | sr2 |
blastintensity.duration.t.w.s | condition_dum | 351 | 0.03 | 0.29 | .775 | .00 |
blastintensity.duration.t.w.s | KIMS.t.w.s | 351 | 0.05 | 0.55 | .582 | .00 |
blastintensity.duration.t.w.s | BSCS.t.w.s | 351 | -0.03 | -0.31 | .755 | .00 |
blastintensity.duration.t.w.s | BAQ.t.w.s | 351 | 0.18 | 2.14 | .033 | .01 |
blastintensity.duration.t.w.s | condition_dum:KIMS.t.w.s | 351 | -0.02 | -0.14 | .891 | .00 |
blastintensity.duration.t.w.s | condition_dum:BSCS.t.w.s | 351 | 0.08 | 0.58 | .560 | .00 |
blastintensity.duration.t.w.s | KIMS.t.w.s:BSCS.t.w.s | 351 | 0.07 | 0.90 | .369 | .00 |
blastintensity.duration.t.w.s | condition_dum:BAQ.t.w.s | 351 | 0.04 | 0.30 | .768 | .00 |
blastintensity.duration.t.w.s | BSCS.t.w.s:BAQ.t.w.s | 351 | 0.10 | 1.29 | .197 | .00 |
blastintensity.duration.t.w.s | condition_dum:KIMS.t.w.s:BSCS.t.w.s | 351 | -0.06 | -0.53 | .599 | .00 |
blastintensity.duration.t.w.s | condition_dum:BSCS.t.w.s:BAQ.t.w.s | 351 | -0.09 | -0.77 | .443 | .00 |
big.mod1 %>%
nice_lm(b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | β | t | p | sr2 |
blastintensity.t.w.s | condition_dum | 351 | 0.03 | 0.28 | .782 | .00 |
blastintensity.t.w.s | KIMS.t.w.s | 351 | 0.03 | 0.26 | .797 | .00 |
blastintensity.t.w.s | BSCS.t.w.s | 351 | -0.01 | -0.12 | .902 | .00 |
blastintensity.t.w.s | BAQ.t.w.s | 351 | 0.20 | 2.29 | .022 | .01 |
blastintensity.t.w.s | condition_dum:KIMS.t.w.s | 351 | 0.01 | 0.07 | .940 | .00 |
blastintensity.t.w.s | condition_dum:BSCS.t.w.s | 351 | 0.07 | 0.56 | .573 | .00 |
blastintensity.t.w.s | KIMS.t.w.s:BSCS.t.w.s | 351 | 0.08 | 0.91 | .361 | .00 |
blastintensity.t.w.s | condition_dum:BAQ.t.w.s | 351 | 0.04 | 0.30 | .768 | .00 |
blastintensity.t.w.s | BSCS.t.w.s:BAQ.t.w.s | 351 | 0.10 | 1.31 | .191 | .00 |
blastintensity.t.w.s | condition_dum:KIMS.t.w.s:BSCS.t.w.s | 351 | -0.06 | -0.58 | .562 | .00 |
blastintensity.t.w.s | condition_dum:BSCS.t.w.s:BAQ.t.w.s | 351 | -0.10 | -0.86 | .392 | .00 |
big.mod2 %>%
nice_lm(b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | β | t | p | sr2 |
blastduration.t.w.s | condition_dum | 351 | 0.05 | 0.42 | .672 | .00 |
blastduration.t.w.s | KIMS.t.w.s | 351 | 0.09 | 0.88 | .380 | .00 |
blastduration.t.w.s | BSCS.t.w.s | 351 | -0.05 | -0.50 | .619 | .00 |
blastduration.t.w.s | BAQ.t.w.s | 351 | 0.16 | 1.89 | .060 | .01 |
blastduration.t.w.s | condition_dum:KIMS.t.w.s | 351 | -0.04 | -0.30 | .762 | .00 |
blastduration.t.w.s | condition_dum:BSCS.t.w.s | 351 | 0.08 | 0.63 | .527 | .00 |
blastduration.t.w.s | KIMS.t.w.s:BSCS.t.w.s | 351 | 0.08 | 0.93 | .353 | .00 |
blastduration.t.w.s | condition_dum:BAQ.t.w.s | 351 | 0.04 | 0.32 | .747 | .00 |
blastduration.t.w.s | BSCS.t.w.s:BAQ.t.w.s | 351 | 0.10 | 1.26 | .210 | .00 |
blastduration.t.w.s | condition_dum:KIMS.t.w.s:BSCS.t.w.s | 351 | -0.04 | -0.40 | .691 | .00 |
blastduration.t.w.s | condition_dum:BSCS.t.w.s:BAQ.t.w.s | 351 | -0.07 | -0.58 | .565 | .00 |
Interpretation: The condition by trait self-control (brief self-control scale, BSCS) interaction does not come up.
Let’s plot the main significant interaction(s).
interact_plot(big.mod3, pred = "condition_dum", modx = "BSCS.t.w.s",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")Interpretation: The interaction is pretty much the same for all models. Counterintuitively, for people with low self-control, the priming mindfulness condition relates to lower aggression relative to the control condition. In contrast, for people with high self-control, the priming mindfulness condition relates to higher aggression.
Let’s look at the simple slopes now (only for the significant interaction).
big.mod3 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastintensity.duration.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 351 | -0.04 | -0.24 | .812 | .00 |
blastintensity.duration.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 351 | 0.03 | 0.29 | .775 | .00 |
blastintensity.duration.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 351 | 0.11 | 0.63 | .532 | .00 |
big.mod1 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastintensity.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 351 | -0.04 | -0.23 | .818 | .00 |
blastintensity.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 351 | 0.03 | 0.28 | .782 | .00 |
blastintensity.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 351 | 0.11 | 0.61 | .545 | .00 |
big.mod2 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.t.w.s",
b.label = "B") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | β | t | p | sr2 |
blastduration.t.w.s | condition_dum (LOW-BSCS.t.w.s) | 351 | -0.03 | -0.18 | .855 | .00 |
blastduration.t.w.s | condition_dum (MEAN-BSCS.t.w.s) | 351 | 0.05 | 0.42 | .672 | .00 |
blastduration.t.w.s | condition_dum (HIGH-BSCS.t.w.s) | 351 | 0.14 | 0.76 | .450 | .00 |
Interpretation: There seems to have no effect of priming mindfulness on blast intensity as a function of self-control.
Based on the results, it seems that the predicted interaction between self-control and the priming mindfulness manipulation does not come up.
report::cite_packages(sessionInfo())